home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / sparc / jmp_buf.h < prev    next >
Text File  |  1993-02-24  |  383b  |  15 lines

  1. /* Define the machine-dependent type `jmp_buf'.  SPARC version.  */
  2.  
  3. /* NOTE: The assembly code in __longjmp.S and setjmp.S knows the layout
  4.    of this structure.  You must hack the assembly code if you want to change
  5.    the order of the members.  */
  6.  
  7. typedef struct
  8.   {
  9.     /* Return PC (register o7).  */
  10.     __ptr_t __pc;
  11.  
  12.     /* Saved FP.  */
  13.     __ptr_t __fp;
  14.   } __jmp_buf[1];
  15.